home *** CD-ROM | disk | FTP | other *** search
- /*
- * File: mp_gbls.h
- * SGoldthorpe 27-May-91
- *
- * Version 0.5 by Piet van Oostrum <piet@cs.ruu.nl>
- * November 1991.
- */
-
- /*
- * HEADER FILE FOR MIDIPLAY
- */
-
-
- #define BYTE unsigned char
- #define WORD int
- #define LONG int
-
-
- /* COMPILER MANIFESTS */
- #define RELEASE 0
- #define VERSION 5
- #define DATE "17-Nov-91"
-
- #define BUFFER_SIZE 128*1024
- #define MAX_TRACKS 32
-
- #define BOOL int
- #ifndef FALSE
- #define FALSE (0)
- #define TRUE !FALSE
- #endif
-